home *** CD-ROM | disk | FTP | other *** search
/ The CICA Windows Explosion! / The CICA Windows Explosion! - Disc 2.iso / programr / progwin.zip / WHATSIZE.ZIP / WHATSIZE.MAK < prev   
Text File  |  1991-11-01  |  330b  |  19 lines

  1. OBJS = whatsize.obj
  2. INCPATH = C:\BORLANDC\INCLUDE
  3. FLAGS = -W -mm -v -I$(INCPATH)
  4.  
  5. whatsize.exe: $(OBJS) whatsize.def
  6.         BCC $(FLAGS) -ewhatsize.exe @&&!
  7. $(OBJS)
  8. !
  9.         rc whatsize.exe
  10.  
  11. .c.obj:
  12.         BCC -c $(FLAGS) {$< }
  13.  
  14. .cpp.obj:
  15.         BCC -c $(FLAGS) {$< }
  16.  
  17. .rc.res:
  18.         rc -r -i$(INCPATH) $<
  19.